home *** CD-ROM | disk | FTP | other *** search
- /* EDITL.H One-line-editor. After exiting keeps its string in
- global[global_num], where global_num is the number of this line
- in container.
- */
-
- #ifndef __DIACOM_EDIT_LINE_H_
- #define __DIACOM_EDIT_LINE_H_
-
- #include "ceditl.h"
-
- class DiacomEditLine : public CaptureEditLine
- {
- public:
- DiacomEditLine(loc pos, int l, char* text = "",
- CAPTURE_POS type = C_RIGHT,
- int max_len = 0,
- BORDERS b_type = BUTTON_BORDER, int pat = 0, int insert = 1)
- : CaptureEditLine(pos, l, text, type,
- max_len, b_type, pat, 0, insert)
- {}
-
- virtual void exe(int act = 0);
- };
-
-
-
- #endif __DIACOM_EDIT_LINE_H_
-
-
-